home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 2 / Deutsche Edition 2.iso / mac / UTILITYS / MathLibFast ƒ / MathLibFast.r < prev    next >
Encoding:
Text File  |  1994-07-14  |  994 b   |  30 lines  |  [TEXT/MPS ]

  1. /*
  2.  *   SharedLib.r
  3.  *
  4.  *     resource file for sample C++ shared library
  5.  *
  6.  *     Copyright © 1993, 1994, Apple Computer, Inc.  All rights reserved.
  7.  */
  8.  
  9. #include "Types.r"
  10. #include "SysTypes.r"
  11. #include "CodeFragmentTypes.r"
  12.  
  13. resource 'cfrg' (0) {
  14.    {
  15.       kPowerPC,                /* Target machine's Architecture. */
  16.       kUpdateLib,                /* This is  an update. */
  17.       kNoVersionNum,        /* Current version. */
  18.       kNoVersionNum,        /* Definition version. */
  19.       kDefaultStackSize,    /* Stack size of application. */
  20.       kNoAppSubFolder,        /* Not used here.  Can be the resource-id of an 'alis'
  21.                                resource.  Used to provide additional location
  22.                                to search for libraries. */
  23.       kIsLib,                /* This is library. */
  24.       kOnDiskFlat,          /* This code fragment is on disk, in the data fork. */
  25.       kZeroOffset,            /* Offset of code into data fork. */
  26.       kWholeFork,           /* Code takes up all of data fork (can give a size). */
  27.       "MathLib"           /* Name of library. */
  28.    }
  29. };
  30.